From fad97cbed645ccc167265f38fb92bc8e03cc63ad Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Wed, 19 May 1993 04:38:28 +0000 Subject: [PATCH] * process.c [__sgi] (allocate_pty): Give up immediately if pty is inaccessible. --- src/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process.c b/src/process.c index f383c95511a..17a0ca6a7ca 100644 --- a/src/process.c +++ b/src/process.c @@ -444,7 +444,7 @@ allocate_pty () if (access (pty_name, 6) != 0) { close (fd); -#ifndef IRIS +#if !defined(IRIS) && !defined(__sgi) continue; #else return -1; -- 2.30.2